home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -in_the_mag- / workbench / sql / msql-2.0.10.1 / msql_update < prev    next >
Text File  |  1999-06-14  |  790b  |  55 lines

  1. ; $VER: Update msql server (06.06.99)
  2. ;
  3. ;    Installer script for the msql server
  4. ;    ©1999 Christophe Sollet
  5. ;
  6.  
  7.     (set UserLevel.old @user-level)
  8.  
  9. ; Initialize messages.
  10.  
  11.     (set #NoPIns "\nIt's an update mSQL distribution. You must have a previous one installed\nand a valid msql: assign\n")
  12.  
  13. ; the install procedure
  14.  
  15.  
  16. ; Copy the distribution
  17. (procedure CopyMsql
  18.     ; Copy all...
  19.     (copyfiles (source "")
  20.                (dest ilocation)
  21.                (all)
  22.     )
  23. )
  24.  
  25.  
  26. ; The install process begin here.
  27. ; Welcome the user.
  28.  
  29.     (complete 0)
  30.     (welcome)
  31.  
  32.  
  33. ; Msql install dest.
  34.  
  35.     (if 
  36.         (=
  37.             (exists ("msql:") (noreq)) 2)
  38.         (
  39.             (set ilocation "msql:")
  40.         )
  41.         (
  42.             (abort #NoPIns)
  43.         )
  44.     )
  45.  
  46.  
  47. ; Install all
  48.  
  49.     (CopyMsql)
  50.     (complete 100)
  51.  
  52. ; exit
  53.     (set @default-dest ilocation)
  54.     (exit "the Msql Server have been updated\n")
  55.